home *** CD-ROM | disk | FTP | other *** search
/ Freelog 100 / FreelogNo100-NovembreDecembre2010.iso / ViePratique / Calendar Magic / setup.exe / {app} / FromPix.shf < prev    next >
Text File  |  2007-01-06  |  330b  |  13 lines

  1. Degrees
  2. '
  3. ' Given an N megapixel digital camera, calculate the dimensions (in inches) of the largest
  4. ' photo quality print. Assumes a 4:3 print photo aspect ratio and the use of a 300 dpi printer.
  5. ' a = long side, b = short side
  6. '
  7. N = 3
  8. ==> N = 3
  9. a = sqrt(400 * N / 27)
  10. ==> a = 6.6666666666667
  11. b = 3 * a / 4
  12. ==> b = 5
  13.